소스 검색

package: cfgfs: Fix for compiling with gcc-14

The asprintf() function is not exported unless _GNU_SOURCE has been
defined.

Signed-off-by: Phil Sutter <phil@nwl.cc>
Phil Sutter 1 년 전
부모
커밋
65644d7bfa
1개의 변경된 파일1개의 추가작업 그리고 0개의 파일을 삭제
  1. 1 0
      package/cfgfs/src/ft_pack.c

+ 1 - 0
package/cfgfs/src/ft_pack.c

@@ -21,6 +21,7 @@
  * the possibility of such damage or existence of a defect.
  */
 
+#define _GNU_SOURCE
 #include <sys/param.h>
 #include <sys/stat.h>
 #include <fcntl.h>