Skip to content

Commit 1c77a36

Browse files
authored
Merge pull request #103 from hattne/enable-ulp
Enable ULP by default
2 parents feeac19 + 3212c59 commit 1c77a36

File tree

7 files changed

+13
-1
lines changed

7 files changed

+13
-1
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -309,7 +309,7 @@ if(CBF_ENABLE_FORTRAN)
309309
endif()
310310

311311
option(CBF_ENABLE_DOC "Build documentation" OFF)
312-
option(CBF_ENABLE_ULP "Enable ULP" OFF)
312+
option(CBF_ENABLE_ULP "Enable ULP" ON)
313313

314314
set (CBF_CMAKE_DEBUG "ON")
315315

Makefile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -291,6 +291,8 @@ CBFLIB_DONT_USE_BSHUF?=no
291291
CBFLIB_DONT_USE_ZSTD?=no
292292

293293

294+
CBF_USE_ULP=yes
295+
294296
CBFLIB_DONT_USE_LOCAL_NUWEB ?= no
295297
ifeq ($(CBFLIB_DONT_USE_LOCAL_NUWEB),yes)
296298
NUWEB=nuweb

Makefile_LINUX

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -291,6 +291,8 @@ CBFLIB_DONT_USE_BSHUF?=no
291291
CBFLIB_DONT_USE_ZSTD?=no
292292

293293

294+
CBF_USE_ULP=yes
295+
294296
CBFLIB_DONT_USE_LOCAL_NUWEB ?= no
295297
ifeq ($(CBFLIB_DONT_USE_LOCAL_NUWEB),yes)
296298
NUWEB=nuweb

Makefile_MINGW

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -291,6 +291,8 @@ CBFLIB_DONT_USE_BSHUF?=no
291291
CBFLIB_DONT_USE_ZSTD?=no
292292

293293

294+
CBF_USE_ULP=yes
295+
294296
CBFLIB_DONT_USE_LOCAL_NUWEB ?= no
295297
ifeq ($(CBFLIB_DONT_USE_LOCAL_NUWEB),yes)
296298
NUWEB=nuweb

Makefile_MSYS2

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -290,6 +290,8 @@ CBFLIB_DONT_USE_LZ4?=yes
290290
CBFLIB_DONT_USE_BSHUF?=yes
291291
CBFLIB_DONT_USE_ZSTD?=yes
292292

293+
CBF_USE_ULP=yes
294+
293295
CBFLIB_DONT_USE_LOCAL_NUWEB ?= no
294296
ifeq ($(CBFLIB_DONT_USE_LOCAL_NUWEB),yes)
295297
NUWEB=nuweb

Makefile_OSX

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -291,6 +291,8 @@ CBFLIB_DONT_USE_BSHUF?=no
291291
CBFLIB_DONT_USE_ZSTD?=no
292292

293293

294+
CBF_USE_ULP=yes
295+
294296
CBFLIB_DONT_USE_LOCAL_NUWEB ?= no
295297
ifeq ($(CBFLIB_DONT_USE_LOCAL_NUWEB),yes)
296298
NUWEB=nuweb

m4/Makefile.m4

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -298,6 +298,8 @@ CBFLIB_DONT_USE_BSHUF?=no
298298
CBFLIB_DONT_USE_ZSTD?=no
299299
')`
300300

301+
CBF_USE_ULP=yes
302+
301303
CBFLIB_DONT_USE_LOCAL_NUWEB ?= no
302304
ifeq ($(CBFLIB_DONT_USE_LOCAL_NUWEB),yes)
303305
NUWEB=nuweb

0 commit comments

Comments
 (0)