Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
- Little modification to programmatically find grass version +Add
FreeBSD locale path
- Add missing includes in kpty
  • Loading branch information
lbartoletti authored and 3nids committed Jan 29, 2018
1 parent 8d4d08f commit 4c436e5
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
6 changes: 5 additions & 1 deletion cmake/FindGRASS.cmake
Expand Up @@ -159,7 +159,11 @@ ENDIF (WIN32)

IF (UNIX)
IF (GRASS_FIND_VERSION EQUAL 7)
LIST(APPEND GRASS_PATHS /usr/lib64/grass70 /usr/lib/grass70 /usr/lib64/grass71 /usr/lib/grass71 /usr/lib64/grass72 /usr/lib/grass72)
FOREACH (PATH /usr/lib64 /usr/lib /usr/local)
FOREACH (VERSION grass70, grass71, grass72)
LIST(APPEND GRASS_PATHS "${PATH}/${VERSION}")
ENDFOREACH (VERSION)
ENDFOREACH (PATH)
ENDIF ()
ENDIF (UNIX)

Expand Down
2 changes: 2 additions & 0 deletions src/plugins/grass/qtermwidget/kpty.cpp
Expand Up @@ -28,6 +28,8 @@


#if defined(__FreeBSD__) || defined(__NetBSD__) || defined(__OpenBSD__) || defined(__DragonFly__)
#define HAVE_UTEMPTER
#define HAVE_UTMPX
#define HAVE_LOGIN
#define HAVE_LIBUTIL_H
#endif
Expand Down

0 comments on commit 4c436e5

Please sign in to comment.