diff options
author | Norikatsu Shigemura <nork@FreeBSD.org> | 2003-10-09 02:16:44 +0000 |
---|---|---|
committer | Norikatsu Shigemura <nork@FreeBSD.org> | 2003-10-09 02:16:44 +0000 |
commit | c27ce9b48e0af1edab035ea49c6895a64bbd196b (patch) | |
tree | 828a1a43a24eed3b9a7631691289eacb0c4abf46 /japanese/samba/files/patch-configure.in | |
parent | Update to 1.3.9. (diff) |
Fix build error with WITH_CUPS and gettext(3).
PR: ports-jp/14220
Reported by: Hata <hata@maizuru-ct.ac.jp>
Submitted by: NAKAJI Hiroyuki <nakaji@jp.FreeBSD.org> (maintainer)
Notes
Notes:
svn path=/head/; revision=90679
Diffstat (limited to 'japanese/samba/files/patch-configure.in')
-rw-r--r-- | japanese/samba/files/patch-configure.in | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/japanese/samba/files/patch-configure.in b/japanese/samba/files/patch-configure.in new file mode 100644 index 000000000000..4b7c3d0915bd --- /dev/null +++ b/japanese/samba/files/patch-configure.in @@ -0,0 +1,26 @@ +Index: configure.in +=================================================================== +RCS file: /project/cvs/samba22-ja/source/configure.in,v +retrieving revision 1.27 +diff -u -r1.27 configure.in +--- configure.in 22 Aug 2003 08:45:59 -0000 1.27 ++++ configure.in 8 Oct 2003 12:50:23 -0000 +@@ -696,6 +696,18 @@ + LDFLAGS="$LDFLAGS `$CUPS_CONFIG --ldflags`" + LIBS="$LIBS `$CUPS_CONFIG --libs`" + fi ++ set - $CFLAGS ++ CFLAGS= ++ while test -n "$1"; do ++ case "$1" in ++ "`$CUPS_CONFIG --cflags`") ++ ;; ++ *) ++ CFLAGS="$CFLAGS $1" ++ ;; ++ esac ++ shift ++ done + fi + + ############################################ |