Browse Source

makefile: Remove -std=c99 from CFLAGS.

PATH_MAX is not in c99 and also struct ip_mreq. With -std=c99
tsdecrypt do not compile with gcc 4.5.
Georgi Chorbadzhiyski 12 years ago
parent
commit
66611cc394
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      Makefile

+ 1
- 1
Makefile View File

@@ -9,7 +9,7 @@ ifeq "$(GIT_VER)" ""
9 9
 GIT_VER = "release"
10 10
 endif
11 11
 
12
-CFLAGS  = -O2 -ggdb -std=c99
12
+CFLAGS  = -O2 -ggdb
13 13
 CFLAGS += -Wall -Wextra -Wshadow -Wformat-security -Wstrict-prototypes
14 14
 CFLAGS += -DBUILD_ID=\"$(BUILD_ID)\" -DVERSION=\"$(VERSION)\" -DGIT_VER=\"$(GIT_VER)\"
15 15
 

Loading…
Cancel
Save