mirror of
https://github.com/tailix/libkernaux.git
synced 2025-04-21 17:42:26 -04:00
Main: fix CFLAGS
This commit is contained in:
parent
dbe99b83be
commit
a6b068f7f1
1 changed files with 3 additions and 1 deletions
|
@ -185,7 +185,9 @@ AS_IF([test "$with_libc_strnlen" != yes], [AC_SUBST([comment_line_libc_strnlen],
|
|||
|
||||
|
||||
|
||||
AS_IF([test "$enable_pic" != no], [CFLAGS+=' -fpic '], [CFLAGS+=' -fno-pic'])
|
||||
AC_DEFUN([do_enable_pic], [CFLAGS+=' -fpic '])
|
||||
AC_DEFUN([do_disable_pic], [CFLAGS+=' -fno-pic'])
|
||||
AS_IF([test "$enable_pic" != no], do_enable_pic, do_disable_pic)
|
||||
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue