Skip to content

Commit

Permalink
fix makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
okbob committed Dec 4, 2022
1 parent e425e5c commit 4e93f15
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ all:
# Include setting from the configure script
-include config.make

override CFLAGS += -g -O2 -Werror-implicit-function-declaration -D_POSIX_SOURCE=1 -std=c99 -Wextra -Wduplicated-cond -Wduplicated-branches -Wlogical-op -Wrestrict -Wnull-dereference -Wjump-misses-init -Wdouble-promotion -Wshadow -pedantic -fstack-protector-all -fsanitize=address -fstack-protector -fstack-protector-strong
# override CFLAGS += -g -O2 -Werror-implicit-function-declaration -D_POSIX_SOURCE=1 -std=c99 -Wextra -Wduplicated-cond -Wduplicated-branches -Wlogical-op -Wrestrict -Wnull-dereference -Wjump-misses-init -Wdouble-promotion -Wshadow -pedantic -fstack-protector-all -fsanitize=address -fstack-protector -fstack-protector-strong

LDFLAGS += -fsanitize=address
# LDFLAGS += -fsanitize=address

DEPS=$(wildcard *.d)
PSPG_OFILES=csv.o print.o commands.o unicode.o themes.o pspg.o config.o sort.o pgclient.o args.o infra.o \
Expand Down
2 changes: 1 addition & 1 deletion pspg.spec
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

Summary: pspg: a unix pager optimized for psql
Name: pspg
Version: 5.6.1
Version: 5.6.2
Release: 0%{?dist}
License: BSD
Group: Development/Tools
Expand Down
2 changes: 1 addition & 1 deletion src/pspg.h
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
#define FILE_TSV 2
#define FILE_MATRIX 3

#define PSPG_VERSION "5.6.1"
#define PSPG_VERSION "5.6.2"

/* GNU Hurd does not define MAXPATHLEN */
#ifndef MAXPATHLEN
Expand Down

0 comments on commit 4e93f15

Please sign in to comment.