Merge https://github.com/nigels-com/glew.git into master HEAD at Mon Aug 19 14:31:27 GMT 2019

This commit is contained in:
Gyusun Yeom 2019-08-19 14:31:26 +00:00
commit 41c88953cd
2 changed files with 5 additions and 4 deletions

View File

@ -1,4 +1,5 @@
language: cpp
dist: trusty
sudo: false
install:
script:
@ -7,9 +8,9 @@ script:
- make dist-src
- make clean && SYSTEM=linux make
- make clean && SYSTEM=linux-osmesa make
#- make clean && SYSTEM=linux-egl make
- make clean && SYSTEM=linux-egl make
- make clean && SYSTEM=linux-clang make
#- make clean && SYSTEM=linux-clang-egl make
- make clean && SYSTEM=linux-clang-egl make
- pushd build/cmake && git clean -xdf . && cmake -G 'Unix Makefiles' . && make && popd
- pushd build/cmake && git clean -xdf . && cmake -G 'Unix Makefiles' -DGLEW_OSMESA=1 . && make && popd
#- pushd build/cmake && git clean -xdf . && cmake -G 'Unix Makefiles' -DGLEW_EGL=1 . && make && popd
@ -20,7 +21,7 @@ addons:
- cmake
- dos2unix
- libosmesa6-dev
# - libegl1-mesa-dev
- libegl1-mesa-dev
artifacts:
paths:
- $(ls *.zip *.tgz | tr "\n" ":")

View File

@ -24,7 +24,7 @@ WARN = -Wall -W
POPT = -O2
CFLAGS.EXTRA += -fPIC
CFLAGS.EXTRA += -Wcast-qual
CFLAGS.EXTRA += -ansi -pedantic
CFLAGS.EXTRA += -std=c89 -pedantic
CFLAGS.EXTRA += -fno-stack-protector
BIN.SUFFIX =
LIB.SONAME = lib$(NAME).so.$(SO_MAJOR)