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.

110 lines
3.5 KiB

  1. # --- ROCK-COPYRIGHT-NOTE-BEGIN ---
  2. #
  3. # This copyright note is auto-generated by ./scripts/Create-CopyPatch.
  4. # Please add additional copyright information _after_ the line containing
  5. # the ROCK-COPYRIGHT-NOTE-END tag. Otherwise it might get removed by
  6. # the ./scripts/Create-CopyPatch script. Do not edit this copyright text!
  7. #
  8. # ROCK Linux: rock-src/package/base/acl/autoconf.patch
  9. # ROCK Linux is Copyright (C) 1998 - 2003 Clifford Wolf
  10. #
  11. # This program is free software; you can redistribute it and/or modify
  12. # it under the terms of the GNU General Public License as published by
  13. # the Free Software Foundation; either version 2 of the License, or
  14. # (at your option) any later version. A copy of the GNU General Public
  15. # License can be found at Documentation/COPYING.
  16. #
  17. # Many people helped and are helping developing ROCK Linux. Please
  18. # have a look at http://www.rocklinux.org/ and the Documentation/TEAM
  19. # file for details.
  20. #
  21. # --- ROCK-COPYRIGHT-NOTE-END ---
  22. --- ./configure.in.orig 2003-04-07 12:28:53.000000000 -0600
  23. +++ ./configure.in 2003-04-07 12:40:40.000000000 -0600
  24. @@ -58,37 +58,37 @@
  25. AC_SUBST(pkg_group)
  26. dnl check if user wants their own C compiler
  27. -test -z "$CC" && AC_PROG_CC
  28. +AC_PROG_CC
  29. cc=$CC
  30. AC_SUBST(cc)
  31. dnl check if users wants their own make
  32. -test -z "$MAKE" && AC_PATH_PROG(MAKE, make, /usr/bin/make)
  33. +AC_PATH_PROG(MAKE, make, /usr/bin/make)
  34. make=$MAKE
  35. AC_SUBST(make)
  36. dnl check if users wants their own linker
  37. -test -z "$LD" && AC_PATH_PROG(LD, ld, /usr/bin/ld)
  38. +AC_PATH_PROG(LD, ld, /usr/bin/ld)
  39. ld=$LD
  40. AC_SUBST(ld)
  41. dnl check if the tar program is available
  42. -test -z "$TAR" && AC_PATH_PROG(TAR, tar)
  43. +AC_PATH_PROG(TAR, tar)
  44. tar=$TAR
  45. AC_SUBST(tar)
  46. dnl check if the gzip program is available
  47. -test -z "$ZIP" && AC_PATH_PROG(ZIP, gzip, /bin/gzip)
  48. +AC_PATH_PROG(ZIP, gzip, /bin/gzip)
  49. zip=$ZIP
  50. AC_SUBST(zip)
  51. dnl check if the makedepend program is available
  52. -test -z "$MAKEDEPEND" && AC_PATH_PROG(MAKEDEPEND, makedepend, /bin/true)
  53. +AC_PATH_PROG(MAKEDEPEND, makedepend, /bin/true)
  54. makedepend=$MAKEDEPEND
  55. AC_SUBST(makedepend)
  56. dnl check if the rpm program is available
  57. -test -z "$RPM" && AC_PATH_PROG(RPM, rpm, /bin/rpm)
  58. +AC_PATH_PROG(RPM, rpm, /bin/rpm)
  59. rpm=$RPM
  60. AC_SUBST(rpm)
  61. @@ -114,18 +114,18 @@
  62. AC_PROG_LN_S
  63. dnl check if user wants their own awk, sed and echo
  64. -test -z "$AWK" && AC_PATH_PROG(AWK, awk, /bin/awk)
  65. +AC_PATH_PROG(AWK, awk, /bin/awk)
  66. awk=$AWK
  67. AC_SUBST(awk)
  68. -test -z "$SED" && AC_PATH_PROG(SED, sed, /bin/sed)
  69. +AC_PATH_PROG(SED, sed, /bin/sed)
  70. sed=$SED
  71. AC_SUBST(sed)
  72. -test -z "$ECHO" && AC_PATH_PROG(ECHO, echo, /bin/echo)
  73. +AC_PATH_PROG(ECHO, echo, /bin/echo)
  74. echo=$ECHO
  75. AC_SUBST(echo)
  76. dnl ensure libtool is installed
  77. -test -z "$LIBTOOL" && AC_PATH_PROG(LIBTOOL, libtool,,/usr/bin)
  78. +AC_PATH_PROG(LIBTOOL, libtool,,/usr/bin)
  79. if test "$LIBTOOL" = ""; then
  80. echo
  81. echo 'FATAL ERROR: libtool does not seem to be installed.'
  82. @@ -150,14 +150,14 @@
  83. dnl check if the msgfmt, msgmerge, xgettext programs are available
  84. if test "$enable_gettext" = yes; then
  85. - test -z "$MSGFMT" && AC_CHECK_PROG(MSGFMT, msgfmt, /usr/bin/msgfmt)
  86. + AC_CHECK_PROG(MSGFMT, msgfmt, /usr/bin/msgfmt)
  87. msgfmt=$MSGFMT
  88. AC_SUBST(msgfmt)
  89. - test -z "$MSGMERGE" && AC_CHECK_PROG(MSGMERGE, msgmerge, /usr/bin/msgmerge)
  90. + AC_CHECK_PROG(MSGMERGE, msgmerge, /usr/bin/msgmerge)
  91. msgmerge=$MSGMERGE
  92. AC_SUBST(msgmerge)
  93. - test -z "$XGETTEXT" && AC_CHECK_PROG(XGETTEXT, xgettext, /usr/bin/xgettext)
  94. + AC_CHECK_PROG(XGETTEXT, xgettext, /usr/bin/xgettext)
  95. xgettext=$XGETTEXT
  96. AC_SUBST(xgettext)