View | Details | Raw Unified | Return to bug 1132
Collapse All | Expand All

(-)configure.ac (-4 / +4 lines)
Lines 575-581 esac Link Here
575
575
576
# Allow user to specify flags
576
# Allow user to specify flags
577
AC_ARG_WITH(cflags,
577
AC_ARG_WITH(cflags,
578
	[  --with-cflags           Specify additional flags to pass to compiler],
578
	[  --with-cflags=flags     Specify additional flags to pass to compiler],
579
	[
579
	[
580
		if test -n "$withval"  &&  test "x$withval" != "xno"  &&  \
580
		if test -n "$withval"  &&  test "x$withval" != "xno"  &&  \
581
		    test "x${withval}" != "xyes"; then
581
		    test "x${withval}" != "xyes"; then
Lines 584-590 AC_ARG_WITH(cflags, Link Here
584
	]
584
	]
585
)
585
)
586
AC_ARG_WITH(cppflags,
586
AC_ARG_WITH(cppflags,
587
	[  --with-cppflags         Specify additional flags to pass to preprocessor] ,
587
	[  --with-cppflags=flags   Specify additional flags to pass to preprocessor] ,
588
	[
588
	[
589
		if test -n "$withval"  &&  test "x$withval" != "xno"  &&  \
589
		if test -n "$withval"  &&  test "x$withval" != "xno"  &&  \
590
		    test "x${withval}" != "xyes"; then
590
		    test "x${withval}" != "xyes"; then
Lines 593-599 AC_ARG_WITH(cppflags, Link Here
593
	]
593
	]
594
)
594
)
595
AC_ARG_WITH(ldflags,
595
AC_ARG_WITH(ldflags,
596
	[  --with-ldflags          Specify additional flags to pass to linker],
596
	[  --with-ldflags=flags    Specify additional flags to pass to linker],
597
	[
597
	[
598
		if test -n "$withval"  &&  test "x$withval" != "xno"  &&  \
598
		if test -n "$withval"  &&  test "x$withval" != "xno"  &&  \
599
		    test "x${withval}" != "xyes"; then
599
		    test "x${withval}" != "xyes"; then
Lines 602-608 AC_ARG_WITH(ldflags, Link Here
602
	]
602
	]
603
)
603
)
604
AC_ARG_WITH(libs,
604
AC_ARG_WITH(libs,
605
	[  --with-libs             Specify additional libraries to link with],
605
	[  --with-libs=libs        Specify additional libraries to link with],
606
	[
606
	[
607
		if test -n "$withval"  &&  test "x$withval" != "xno"  &&  \
607
		if test -n "$withval"  &&  test "x$withval" != "xno"  &&  \
608
		    test "x${withval}" != "xyes"; then
608
		    test "x${withval}" != "xyes"; then

Return to bug 1132