mirror of the now-defunct rocklinux.org
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

65 lines
3.3 KiB

  1. diff -dur SDL-1.2.7/configure SDL-1.2.7-p/configure
  2. --- SDL-1.2.7/configure 2004-11-08 21:45:34.792141160 +0100
  3. +++ SDL-1.2.7-p/configure 2004-11-08 21:44:53.429429248 +0100
  4. @@ -22083,7 +22083,7 @@
  5. enable_esd_shared=yes
  6. fi;
  7. esd_lib_spec=`echo $ESD_LIBS | sed 's/.*-L\([^ ]*\).*/\1\/libesd.so.*/'`
  8. - esd_lib=`ls $esd_lib_spec | head -1 | sed 's/.*\/\(.*\)/\1/'`
  9. + esd_lib=`ls $esd_lib_spec | head -n1 | sed 's/.*\/\(.*\)/\1/'`
  10. echo "-- $esd_lib_spec -> $esd_lib"
  11. if test x$use_dlopen != xyes && \
  12. test x$enable_esd_shared = xyes; then
  13. @@ -22227,7 +22227,7 @@
  14. enable_arts_shared=yes
  15. fi;
  16. arts_lib_spec="$ARTSC_PREFIX/lib/libartsc.so.*"
  17. - arts_lib=`ls $arts_lib_spec | head -1 | sed 's/.*\/\(.*\)/\1/'`
  18. + arts_lib=`ls $arts_lib_spec | head -n1 | sed 's/.*\/\(.*\)/\1/'`
  19. echo "-- $arts_lib_spec -> $arts_lib"
  20. if test x$use_dlopen != xyes && \
  21. test x$enable_arts_shared = xyes; then
  22. Nur in SDL-1.2.7-p/: configure~.
  23. diff -dur SDL-1.2.7/configure.in SDL-1.2.7-p/configure.in
  24. --- SDL-1.2.7/configure.in 2004-02-22 22:31:47.000000000 +0100
  25. +++ SDL-1.2.7-p/configure.in 2004-11-08 21:42:50.051185592 +0100
  26. @@ -342,7 +342,7 @@
  27. [ --enable-esd-shared dynamically load ESD audio support [default=yes]],
  28. , enable_esd_shared=yes)
  29. esd_lib_spec=`echo $ESD_LIBS | sed 's/.*-L\([[^ ]]*\).*/\1\/libesd.so.*/'`
  30. - esd_lib=`ls $esd_lib_spec | head -1 | sed 's/.*\/\(.*\)/\1/'`
  31. + esd_lib=`ls $esd_lib_spec | head -n1 | sed 's/.*\/\(.*\)/\1/'`
  32. echo "-- $esd_lib_spec -> $esd_lib"
  33. if test x$use_dlopen != xyes && \
  34. test x$enable_esd_shared = xyes; then
  35. @@ -392,7 +392,7 @@
  36. [ --enable-arts-shared dynamically load aRts audio support [default=yes]],
  37. , enable_arts_shared=yes)
  38. arts_lib_spec=`echo $ARTSC_LIBS | sed 's/.*-L\([[^ ]]*\).*/\1\/libartsc.so.*/'`
  39. - arts_lib=`ls $arts_lib_spec | head -1 | sed 's/.*\/\(.*\)/\1/'`
  40. + arts_lib=`ls $arts_lib_spec | head -n1 | sed 's/.*\/\(.*\)/\1/'`
  41. echo "-- $arts_lib_spec -> $arts_lib"
  42. if test x$use_dlopen != xyes && \
  43. test x$enable_arts_shared = xyes; then
  44. Nur in SDL-1.2.7-p/: configure.rej.
  45. diff -dur SDL-1.2.7/test/config.guess SDL-1.2.7-p/test/config.guess
  46. --- SDL-1.2.7/test/config.guess 2001-06-10 20:20:23.000000000 +0200
  47. +++ SDL-1.2.7-p/test/config.guess 2004-11-08 21:42:50.053185288 +0100
  48. @@ -314,7 +314,7 @@
  49. echo m68k-sun-sunos${UNAME_RELEASE}
  50. exit 0 ;;
  51. sun*:*:4.2BSD:*)
  52. - UNAME_RELEASE=`(head -1 /etc/motd | awk '{print substr($5,1,3)}') 2>/dev/null`
  53. + UNAME_RELEASE=`(head -n1 /etc/motd | awk '{print substr($5,1,3)}') 2>/dev/null`
  54. test "x${UNAME_RELEASE}" = "x" && UNAME_RELEASE=3
  55. case "`/bin/arch`" in
  56. sun3)
  57. @@ -493,7 +493,7 @@
  58. fi
  59. exit 0 ;;
  60. *:AIX:*:[45])
  61. - IBM_CPU_ID=`/usr/sbin/lsdev -C -c processor -S available | head -1 | awk '{ print $1 }'`
  62. + IBM_CPU_ID=`/usr/sbin/lsdev -C -c processor -S available | head -n1 | awk '{ print $1 }'`
  63. if /usr/sbin/lsattr -El ${IBM_CPU_ID} | grep ' POWER' >/dev/null 2>&1; then
  64. IBM_ARCH=rs6000
  65. else